/* General body styling for mobile */
body {
    font-size: 16px;
    word-wrap: break-word;
}

/* Header adjustments */
.title-header {
    padding: 10px 0;
}

.title-header .title-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.title-logo img {
    width: 40px;
    height: 40px;
    margin: 5px;
}

.title-logo img[alt="logo"] {
    width: 150px;
    height: auto;
    margin-bottom: 10px;
}

.slogan h1 {
    font-size: 1.1rem;
    line-height: 1.4;
    margin: 5px 10px;
}

/* Marquee images */
.marquee img {
    width: 60px;
    height: 60px;
}

/* Main navigation */
.main-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
}

.main-nav li {
    margin: 5px 0;
}

/* Sections Grid layout */
.grid {
    display: block; /* Stack items vertically */
}

.box {
    width: 90%;
    margin: 15px auto;
    text-align: center;
    padding: 10px;
    box-sizing: border-box;
}

.box p {
    margin: 5px 0;
}

.box img {
    max-width: 100%;
    height: auto; /* Maintain aspect ratio */
    width: auto; /* Overwrite inline attribute if needed */
    display: block;
    margin: 0 auto;
}

/* Title sections */
.title-sections h2, .sub-sections h3 {
    text-align: center;
    padding: 0 15px;
}

/* Footer */
footer {
    padding: 10px;
    text-align: center;
}
